//6.2 - Pointers - Dirk Henkemans and Mark Lee - Prima Tech #include using namespace std; int main(void) { int an_int = 5; int* a_pointer = &an_int; cout << "The value of an_int is: " << an_int << "\nThe address of an_int is: " << &an_int << "\nThe value of a_pointer is " << a_pointer << "\nThe address of a_pointer is: " << &a_pointer; }